home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 273_01 / getattr.cc < prev    next >
Text File  |  1987-11-02  |  244b  |  12 lines

  1. int get_attr(int row, int col)
  2. /* Get the attribute at the specified row and col.
  3.    RETURNED is attr
  4. */
  5. {
  6.   extern color, mono, cga, ega, scrseg, bios;
  7.   int    attr;
  8.   unsigned int scrofs;
  9.   sread_a(row,col,&attr);
  10.   return(attr);
  11. }
  12.